home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 1
/
Atari Mega Archive - Volume 1.iso
/
gnu
/
othergnu
/
ms.zoo
/
makefile.gcc
< prev
next >
Wrap
Makefile
|
1990-04-17
|
326b
|
18 lines
#
# Makefile for GCC
CROSSDIR = /dsrg/bammi/cross-gcc
CROSSBIN = $(CROSSDIR)/bin
CROSSLIB = $(CROSSDIR)/lib
CFLAGS = -O -mshort -fomit-frame-pointer -fcombine-regs
CC = cgcc
LD = $(CROSSLIB)/gcc-ld
ms.tos: ms.o crts.o
$(LD) -o ms.tos -s crts.o ms.o -lgnu16
ms.o: ms.c config.h
crts.o: crts.s
$(CC) $(CFLAGS) -c crts.s